@charset "utf-8";

:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}
.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
caption,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
input {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
  display: block;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  text-decoration: none;
  -webkit-backface-visibility: hidden;
}
ol,
ul,
li {
  list-style: none;
}
html,
body {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #fff;
}
html {
  -webkit-overflow-scrolling: touch;
}
body {
  -webkit-text-size-adjust: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
input,
button {
  outline: 0;
}
input[type="button"],
input[type="submit"],
input[type="file"],
button {
  -webkit-appearance: none;
  border-radius: 0;
}
input {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.flex {
  display: box;
  display: -webkit-box;
  display: -moz-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.flex-d-c {
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}
.flex-jc-fe {
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -o-justify-content: flex-end;
  justify-content: flex-end;
}
.flex-jc-c {
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
}
.flex-jc-sb {
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}
.flex-jc-sa {
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  -o-justify-content: space-around;
  justify-content: space-around;
}
.flex-ai-c {
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
}
.flex-ai-fe {
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  -o-align-items: flex-end;
  align-items: flex-end;
}
.flex1 {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@-moz-document url-prefix() {
  html {
    scrollbar-width: none;
  }
}
.fn-hide-scrollbar::-webkit-scrollbar {
  display: none;
}
.fn-hide-scrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow-x: hidden;
  overflow-y: auto;
}
.clearfix:after {
  content: "\200B";
  display: block;
  height: 0;
  clear: both;
}
.clearfix {
  *zoom: 1;
}
.fn-cp {
  cursor: pointer;
}
html,
body {
  font-family: "Microsoft YaHei" !important;
  font-size: 0;
}
body {
  width: 640px;
}
.app {
  width: 640px;
  min-height: 100vh;
  background-color: #e3f0fe;
}
.red {
  color: #e32639;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #e3f0fe;
  text-align: center;
  padding: 0 20px;
  box-shadow: 0 0 10px rgb(102 121 181 / 76%);
  z-index: 9;
}
.kefu {
  height: 76px;
}
.logo {
  height: 90px;
}
.main {
  position: relative;
  width: 100%;
  padding-top: 100px;
  padding-bottom: 40px;
}
.banner {
  width: 100%;
}
.banner img {
  width: 100%;
}
.notice {
  position: absolute;
  left: 0;
  width: 100%;
  height: 34px;
  top: 118px;
  background: url(../images/gonggao_m.png) no-repeat center;
  background-size: cover;
  overflow: hidden;
}
.notice p {
  line-height: 34px;
  font-size: 20px;
  color: #fff;
}
.act1 {
  position: absolute;
  top: 467px;
  right: 1px;
  width: 430px;
  text-align: center;
}
.act1 img {
  width: 100%;
}
.btns {
  padding: 0 20px;
}
.btn-item {
  width: 140px;
  height: 57px;
  line-height: 53px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background: url(../images/btn_bg.png) no-repeat top center;
  background-size: 100% auto;
  cursor: pointer;
}
.act2 {
  padding: 34px 20px 0;
}
.act2-table {
  width: 100%;
  font-size: 18px;
  color: #212121;
  background: rgb(255 255 255 / 60%);
  text-align: center;
}
.act2-table td,
.act2-table th {
  border: 1px solid #c9c9c9;
  line-height: 50px;
}
.table-head {
  font-size: 20px;
  color: #fff;
  background-color: 4C8EFE;
  background-image: linear-gradient(to right, #4175fe, #5fb2fe);
}
.table-title {
  line-height: 2.4 !important;
  font-size: 26px;
  color: #468aff;
  letter-spacing: 2px;
}
.apply-box {
  width: 160px;
}
.apply-btn {
  display: inline-block;
  width: 120px;
  height: 50px;
  line-height: 47px;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 2px;
  background: url(../images/btn_bg.png) no-repeat center;
  background-size: 100% auto;
  cursor: pointer;
}
.footer {
  width: 100%;
  height: 80px;
  text-align: center;
}
.copyright {
  font-size: 18px;
  color: #294779;
}
